home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcxl551.arc / START.BAT < prev    next >
DOS Batch File  |  1990-10-23  |  2KB  |  68 lines

  1. echo off
  2. cls
  3. : START.BAT (S)
  4. echo .                                                                        .
  5. echo *=====[ The TesSeRact(TM) CXL User Interface Development System ]======*
  6. echo  Copyright (c) 1987-1990, Innovative Data Concepts. All Rights Reserved
  7. echo .                                                                        .
  8. : initial batch file for setting up the directories
  9. echo .
  10. echo Installation Part 2
  11. echo .
  12. :
  13. echo y >yes
  14. echo Unpacking Header Files ...
  15. TCXL_INC.EXE /x <yes
  16. del TCXL_INC.EXE >nul
  17. :
  18. echo Unpacking Libraries ...
  19. TCXL_LIB.EXE /x <yes
  20. del TCXL_LIB.EXE >nul
  21. :
  22. echo Unpacking Tools ...
  23. for %%z in (SWP BIN UTI CNV BAT) do TCXL_%%z /x <yes
  24. for %%z in (SWP BIN UTI CNV BAT) do del TCXL_%%z.EXE >NUL
  25. :
  26. echo Unpacking Demonstration ...
  27. TCXLDEMO /x <yes
  28. del TCXLDEMO.EXE >NUL
  29. :
  30. echo Do You Wish To Unpack Documentation?
  31. getyn
  32. if errorlevel 1 goto DOCYES
  33. GOTO DOCNO
  34. :DOCYES
  35. TCXL_DOC.EXE /x <yes
  36. del TCXL_DOC.EXE >nul
  37. goto TELLENV
  38. :
  39. :DOCNO
  40. echo Documentation Is In TCXL_DOC.EXE
  41. echo To Unpack, Give The Command TCXL_DOC.EXE /x
  42. echo A Subdirectory TCXL\DOC will then be created and filled
  43. :
  44. :TELLENV
  45. del yes >NUL
  46. echo .
  47. echo Source Code Is In TCXL_xxx.EXE Where The xxx is one of
  48. echo MNU, ENT, HLP, SEL, WIN, DSP, INP, STR, VID, KEY, MOU or HDW
  49. echo .
  50. echo .
  51. echo To compile or build libraries, you will need to set environment 
  52. echo variables with the command SET VAR=VALUE
  53. echo .
  54. echo Compiler        TC/TC++     MSC 5.1       MSC 6.0   ZORTECH
  55. echo                          QC 2.0 or less    QC 2.5
  56. echo  SET TCXL_C=      T            5             6         Z
  57. echo .
  58. echo Assembler       TASM     MASM 5.1
  59. echo  SET TCXL_A=      T           M
  60. echo .
  61. echo Installation Done
  62. :ND
  63. echo .                                                                      .
  64. echo *=====[ The TesSeRact(TM) CXL User Interface Development System ]======*
  65. echo  Copyright (c) 1987-1990, Innovative Data Concepts. All Rights Reserved
  66. echo .                                                                      .
  67. echo Done
  68.